home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / asm_subr.arc / STDSPACE < prev    next >
Encoding:
Text File  |  1985-09-24  |  768 b   |  24 lines

  1. ;-------------------------routine begins--------------------------+
  2. ; ROUTINE FOR SENDING A SPACE TO STANDARD OUTPUT
  3. ;
  4. ; FUNCTION: This routine sends a space out
  5. ;           through the standard output device. 
  6. ; INPUT: None
  7. ; OUTPUT: ASCII code 32 for space is sent through the
  8. ;         standard output device.
  9. ; REGISTERS USED:  No registers are modified
  10. ; SEGMENTS REFERENCED:  None
  11. ; ROUTINES CALLED:  stdout
  12. ; SPECIAL NOTES: None
  13. ;
  14. stdspace    proc    far
  15.     push    dx        ; save registers
  16. ;
  17.     mov    al,32        ; ASCII space
  18.     call    stdout        ; send it out
  19. ;
  20.     pop    dx        ; restore registers
  21.     ret            ; return
  22. stdspace    endp
  23. ;-------------------------routine ends---------------------------+
  24.